home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update20.zoo / pml / diffs
Encoding:
Text File  |  1992-04-19  |  2.7 KB  |  85 lines

  1. *** 1.15    1992/03/23 01:42:10
  2. --- Changelog    1992/04/19 16:23:42
  3. ***************
  4. *** 279,281 ****
  5. --- 279,287 ----
  6.       dont proto clog() for g++, it clashes with clog stream.
  7.   
  8.   ---------------------------- Patchlevel 17 ------------------------------
  9. + log.c, log10.c:: andreas
  10. +          __GCC_HACK__ doesn't work with gcc -O2!!
  11. +     (assignment to index will be moved to end of function)
  12. + ---------------------------- Patchlevel 18 ------------------------------
  13. *** 1.14    1992/03/23 01:42:10
  14. --- PatchLevel.h    1992/04/19 16:23:45
  15. ***************
  16. *** 1,5 ****
  17.   /*
  18. !  *    PatchLevel: 17
  19.    *
  20.    *    the Patch Level above is to identify the version
  21.    *    of the all the files in this directory. given the above
  22. --- 1,5 ----
  23.   /*
  24. !  *    PatchLevel: 18
  25.    *
  26.    *    the Patch Level above is to identify the version
  27.    *    of the all the files in this directory. given the above
  28. *** 1.7    1992/03/21 16:09:38
  29. --- log.c    1992/04/19 16:24:02
  30. ***************
  31. *** 11,29 ****
  32.    * If __GCC_HACK__ is defined then we are folding log and log10 routines*
  33.    * by making in assembler an extra entry point.  Do not define that     *
  34.    * for portable routine!!                                               *
  35.    *                                                                      *
  36.    * 68881 support added by Michael Ritzert, November 1991        *
  37.    ************************************************************************
  38.    */
  39. - #ifdef __GNUC__
  40. - #  ifndef __GCC_HACK__
  41. - #    define __GCC_HACK__
  42. - #  endif
  43. - #  if !(defined(atarist) || defined(atariminix) || defined(mc68000))
  44. - #    undef __GCC_HACK__
  45. - #  endif
  46. - #endif
  47.   
  48.   /************************************************************************
  49.    *                                    *
  50. --- 11,21 ----
  51.    * If __GCC_HACK__ is defined then we are folding log and log10 routines*
  52.    * by making in assembler an extra entry point.  Do not define that     *
  53.    * for portable routine!!                                               *
  54. +  * Do not define that with gcc -O2 !!                    *
  55.    *                                                                      *
  56.    * 68881 support added by Michael Ritzert, November 1991        *
  57.    ************************************************************************
  58.    */
  59.   
  60.   /************************************************************************
  61.    *                                    *
  62. *** 1.5    1992/02/03 20:19:23
  63. --- log10.c    1992/04/19 16:24:02
  64. ***************
  65. *** 60,74 ****
  66.    *        log10(x) = log10(e) * log(x)
  67.    *
  68.    */
  69. - #ifdef __GNUC__
  70. - #  ifndef __GCC_HACK__
  71. - #    define __GCC_HACK__
  72. - #  endif
  73. - #  if !(defined(atarist) || defined(atariminix) || defined(mc68000))
  74. - #    undef __GCC_HACK__
  75. - #  endif
  76. - #endif
  77.   #if !defined (__M68881__) && !defined (sfp004)
  78.   
  79.   #ifndef __GCC_HACK__    /* see log.c for __GCC_HACK__ */
  80. --- 60,65 ----
  81.